home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / os2 / adaptor.zip / ADAPT.ZIP / adaptor / examples / laplace / readme < prev    next >
Text File  |  1993-03-23  |  817b  |  42 lines

  1. LAPLACE - Iteration 
  2.  
  3. laplace.f:
  4.  
  5.     Fortran 90 Version that needs no temporary arrays
  6.  
  7.         256 x 256 (8 processors) : 103 s
  8.  
  9. temporary.f:
  10.  
  11.     Version that creates two temporaries
  12.  
  13. automatic.f:
  14.  
  15.     Version with automatic arrays instead of allocatable arrays
  16.         One temporary array will be generated
  17.  
  18. forall.f:
  19.  
  20.         Version that uses the FORALL construct (movements in the
  21.         body of the loop)
  22.  
  23. graphic.f:
  24.  
  25.     Version of laplace.f with X-Windows output
  26.  
  27. overlap.f:
  28.  
  29.         Version with forall that requires temporary variable with overlap
  30.  
  31.         Changes to generated program:
  32.  
  33.         ALLOCATE (HF(MAXX,HF_LOW-1:HF_HIGH+1))
  34.         ...
  35.         call adp_overlap_DA_R4_21 (f_dsp, hf, f, 1, 1)
  36.  
  37.         256 x 256 (8 processors) : 40 s
  38.  
  39. out.6x6 
  40.  
  41.          Output file for grid size 6 x 6 (check correctness)
  42.